Refactor reconcilers and implementations#250
Merged
Merged
Conversation
05f549b to
bd92697
Compare
966c5f4 to
c6e289f
Compare
kate-osborn
suggested changes
Sep 27, 2022
Contributor
kate-osborn
left a comment
There was a problem hiding this comment.
This is 🔥
Really nice work! This is a huge improvement over what we had before.
Just a couple of small comments and questions.
kate-osborn
reviewed
Sep 29, 2022
kate-osborn
approved these changes
Sep 30, 2022
a594e1a to
6a252c1
Compare
Contributor
Author
|
Changes from the previous version:
|
kate-osborn
suggested changes
Oct 6, 2022
6a252c1 to
2d818d6
Compare
kate-osborn
reviewed
Oct 10, 2022
f5yacobucci
reviewed
Oct 12, 2022
Previously, all reconcilers and implementations looked almost the same. This commit: - Replaces all reconcilers with a single one. - Removes all implementations. Now the reconciler sends upsert and delete events to the event channel instead of the implementations. The sending to the events part of the reconciler doesn't have the shutdown bug (a possibility to hang while sending to the channel during the shutdown) all implementations shared. - Removes the sdk package. Additionally, the Manager now uses the same logger as the other components.
53b9cb8 to
d1cf071
Compare
miledxz
added a commit
to miledxz/nginx-gateway-fabric
that referenced
this pull request
Jan 14, 2025
Previously, all reconcilers and implementations looked almost the same. This commit: - Replaces all reconcilers with a single one. - Removes all implementations. Now the reconciler sends upsert and delete events to the event channel instead of the implementations. The sending to the events part of the reconciler doesn't have the shutdown bug (a possibility to hang while sending to the channel during the shutdown) all implementations shared. - Removes the sdk package. Additionally, the Manager now uses the same logger as the other components.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Previously, all reconcilers and implementations looked almost the same.
This PR:
Additionally, the Manager now uses the same logger as the other components.